home *** CD-ROM | disk | FTP | other *** search
- on(release){
- if(_root.player.cash - _root[viewcar].carworth >= 0)
- {
- _root.player.cash -= _root[viewcar].carworth;
- _root.BuyCar(_root.car,_root[viewcar]);
- _root.prompt("Car Purchased","You Have Purchased a " add _root[viewcar].fullname,2);
- this.removeMovieClip();
- }
- else
- {
- _root.prompt("!!!","You Can\'t Purchase a " add _root[viewcar].fullname,2);
- this.removeMovieClip();
- }
- }
-